home *** CD-ROM | disk | FTP | other *** search
/ Collection of Tools & Utilities / Collection of Tools and Utilities.iso / edit / me_cd.zip / ASC.MUT < prev    next >
Lisp/Scheme  |  1988-08-11  |  113b  |  7 lines

  1.     ;; convert n to ASCII string
  2. (defun asc (int n) (array byte str 2) HIDDEN
  3. {
  4.   (str 0 n)(str 1 0)
  5.   str
  6. })
  7.